home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 80 / XENIATGM80.iso / Goodies / Blood 2 / Source / data.z / MenuSinglePlayer.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-04-02  |  855 b   |  34 lines

  1. // MenuSinglePlayer.h: interface for the CMenuSinglePlayer class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4.  
  5. #if !defined(AFX_MENUSINGLEPLAYER_H__D7668B33_57D4_11D2_BDA0_0060971BDC6D__INCLUDED_)
  6. #define AFX_MENUSINGLEPLAYER_H__D7668B33_57D4_11D2_BDA0_0060971BDC6D__INCLUDED_
  7.  
  8. #if _MSC_VER >= 1000
  9. #pragma once
  10. #endif // _MSC_VER >= 1000
  11.  
  12. #include "MenuBase.h"
  13.  
  14. class CMenuSinglePlayer : public CMenuBase  
  15. {
  16. public:
  17.     CMenuSinglePlayer();
  18.     virtual ~CMenuSinglePlayer();
  19.  
  20.     // Build the menu
  21.     void    Build();
  22.  
  23.     // Enable/Disable the save option
  24.     void    EnableSave(DBOOL bEnable);
  25.  
  26. protected:
  27.     DDWORD    OnCommand(DDWORD dwCommand, DDWORD dwParam1, DDWORD dwParam2);
  28.  
  29. protected:
  30.     CLTGUICtrl    *m_pSaveCtrl;
  31. };
  32.  
  33. #endif // !defined(AFX_MENUSINGLEPLAYER_H__D7668B33_57D4_11D2_BDA0_0060971BDC6D__INCLUDED_)
  34.